    body::before {
	content:"";
    	position:fixed;
        z-index:-100;
	width:100%;
    	height:100%;
        background-color:#14C2CC;
	background-image:
	radial-gradient(circle farthest-side at top right, transparent, #0D64FF), radial-gradient(ellipse farthest-corner at 0% 100%, transparent, #FF00A0);
	animation:bg-change 10s infinite;
    }

    @keyframes bg-change {
    0%, 100% {
	filter:hue-rotate(0deg);
    }
    50% {
    	filter:hue-rotate(-45deg);
    }
    }
